home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / bind9_overflow.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  76 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6. # Ref: 
  7. # http://www.isc.org/products/BIND/bind9.html
  8. # http://cert.uni-stuttgart.de/archive/bugtraq/2003/03/msg00075.html
  9. #
  10.  
  11. if(description)
  12. {
  13.  script_id(11318);
  14.  script_cve_id("CAN-2002-0684");
  15.  if(defined_func("script_xref"))script_xref(name:"IAVA", value:"2003-B-0001");
  16.  script_version ("$Revision: 1.8 $");
  17.  
  18.  
  19.  name["english"] = "BIND 9 overflow";
  20.  name["francais"] = "BIND 9 overflow";
  21.  script_name(english:name["english"], francais:name["francais"]);
  22.  
  23.  desc["english"] = "
  24. The remote BIND 9 DNS server, according to its version number, is vulnerable to a 
  25. buffer overflow which may allow an attacker to gain a shell on this host or 
  26. to disable this server.
  27.  
  28.  
  29. Solution : upgrade to bind 9.2.2 or downgrade to the 8.x series
  30.  
  31. See also : http://www.isc.org/products/BIND/bind9.html
  32.         http://cert.uni-stuttgart.de/archive/bugtraq/2003/03/msg00075.html
  33.        http://www.cert.org/advisories/CA-2002-19.html
  34. Risk factor : High";
  35.  
  36.  
  37.  
  38.  script_description(english:desc["english"]);
  39.  
  40.  summary["english"] = "Checks the remote BIND version";
  41.  summary["francais"] = "VΘrifie le numΘro de version du BIND distant";
  42.  script_summary(english:summary["english"], francais:summary["francais"]);
  43.  
  44.  script_category(ACT_GATHER_INFO);
  45.  
  46.  
  47.  script_copyright(english:"This script is Copyright (C) 2003 Renaud Deraison",
  48.         francais:"Ce script est Copyright (C) 2003 Renaud Deraison");
  49.  family["english"] = "Gain root remotely";
  50.  
  51.  script_family(english:family["english"]);
  52.  
  53.  script_dependencie("bind_version.nasl");
  54.  script_require_keys("bind/version");
  55.  exit(0);
  56. }
  57.  
  58.  
  59.  
  60.  
  61. vers = get_kb_item("bind/version");
  62. if(!vers)exit(0);
  63.  
  64. if(ereg(string:vers, pattern:"^9\.[01]\.*"))
  65. {
  66.  security_hole(53);
  67.  exit(0);
  68. }
  69.  
  70. if(ereg(string:vers, pattern:"^9\.2\.([0-1][^0-9]*|2rc.*)$"))
  71. {
  72.  security_hole(53);
  73.  exit(0);
  74. }
  75.